|
@@ -49,7 +49,7 @@ export default class Raise extends Component {
|
49
|
49
|
}, () => {
|
50
|
50
|
const { raiseDeatil: { showContract } } = this.state
|
51
|
51
|
if (showContract == 1) {
|
52
|
|
- contractUser({ raiseRecordId, }).then(res => {
|
|
52
|
+ contractUser({ showToast: false, raiseRecordId, }).then(res => {
|
53
|
53
|
this.setState({
|
54
|
54
|
signDetail: res || null
|
55
|
55
|
}, () => {
|
|
@@ -329,7 +329,7 @@ export default class Raise extends Component {
|
329
|
329
|
</View>
|
330
|
330
|
{contractDetail &&
|
331
|
331
|
<View className="raise-flex">
|
332
|
|
- <View className="date">合同签署时间 {dayjs(raiseDeatil.createDate).format('YYYY/MM/DD HH:mm:ss')}
|
|
332
|
+ <View className="date">合同签署时间 {dayjs(contractDetail.customerTime).format('YYYY/MM/DD HH:mm:ss')}
|
333
|
333
|
{/* <Image className="download" onClick={() => this.toDownloadContract(contractDetail.contractDownloadUrl)} src={require('../../assets/download.png')} /> */}
|
334
|
334
|
</View>
|
335
|
335
|
<View className="agreement" onClick={() => this.toSeeContract(contractDetail.contractViewUrl)}>查看合同<Text className="right-icon"></Text></View>
|