king
2020-04-15 02a05c4e82e74c290e80ae7710fbb394ed7cac7a
src/templates/zshare/verifycardprint/index.jsx
@@ -54,7 +54,7 @@
  }
  componentDidMount() {
    let _sql = `select ID,Images,PrintTempNO+PrintTempName as PN from sPrintTemplate
    let _sql = `select PrintTempNO,Images,PrintTempNO+PrintTempName as PN from sPrintTemplate
      where appkey= @appkey@ and Deleted=0 
      union select ID,Images,a.PrintTempNO+PrintTempName as PN 
      from (select * from sPrintTemplate where appkey= '' and Deleted=0 ) a 
@@ -67,7 +67,7 @@
      func: 'sPC_Get_SelectedList',
      LText: Utils.formatOptions(_sql),
      obj_name: 'data',
      arr_field: 'PN,ID,Images'
      arr_field: 'PN,PrintTempNO,Images'
    }
    param.timestamp = moment().format('YYYY-MM-DD HH:mm:ss') + '.000'
@@ -77,7 +77,7 @@
      if (res.status) {
        let temps = res.data.map(temp => {
          return {
            value: temp.ID,
            value: temp.PrintTempNO,
            text: temp.PN,
            img: temp.Images
          }